Navigate(String,String,Byte[],String) Method
In This Topic
Navigates to the URL.
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings")>
Overloads Sub Navigate( _
ByVal As String, _
ByVal As String, _
ByVal () As Byte, _
ByVal As String _
)
'Usage
Dim instance As IWebControl
Dim Url As String
Dim targetFrameName As String
Dim postData() As Byte
Dim additionalHeaders As String
instance.Navigate(Url, targetFrameName, postData, additionalHeaders)
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings")]
void Navigate(
string ,
string ,
byte[] ,
string
)
Parameters
- Url
- The Web document URL.
- targetFrameName
- The name of the frame in which to load the document.
- postData
- HTTP POST data, such as form data.
- additionalHeaders
- HTTP headers to add to the default headers.
See Also